home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FLI106C.ZIP;1 / COLORS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-12  |  2.3 KB  |  95 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // __FusionColors Header File
  8. //
  9.  
  10. // ==========================================================================
  11. // Consult the reference manual for complete variable reference of all
  12. // variables within this header file.
  13. // ==========================================================================
  14.  
  15. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  16. //
  17. // Defines colors for fusion
  18. //
  19. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  20.  
  21. struct __FusionColors
  22. {
  23.   int MenuBorder;       // Colors for PullDown/PopUp Menus
  24.   int MenuCloseIcon;
  25.   int MenuDeadOption;
  26.   int MenuHiLite;
  27.   int MenuInsides;
  28.   int MenuQuickKey;
  29.   int MenuTitle;
  30.   int MenuHotKey;
  31.   int MenuSubPointer;
  32.   int MenuCheckMark;
  33.   int MenuSelectable;
  34.  
  35.   int MenuBarBold;      // Colors for the menu bar
  36.   int MenuBarNormal;
  37.  
  38.   int NumNormal;        // Colors for Numeric Elements on a Dialog
  39.   int NumHiLite;
  40.  
  41.   int CharNormal;       // Colors for Character Elements on a Dialog
  42.   int CharHiLite;
  43.  
  44.   int ButtonNormal;     // Colors for a Button Element on a Dialog
  45.   int ButtonBold;
  46.   int ButtonHiLite;
  47.   int ButtonActive;
  48.  
  49.   int CheckText;        // Colors for a Check Box on a Dialog
  50.   int CheckMark;
  51.   int CheckHiLite;
  52.   int CheckQuickKey;
  53.  
  54.   int RadioText;        // Colors for a Radio Button on a Dialog
  55.   int RadioCheckMark;
  56.   int RadioHiLite;
  57.  
  58.   int PickText;         // Colors for a Pick List on a Dialog
  59.   int PickMarked;
  60.   int PickHiLite;
  61.   int PickButton;
  62.  
  63.   int DiaBorder;        // Colors for a Dialog
  64.   int DiaCloseIcon;
  65.   int DiaInterior;
  66.   int DiaTitle;
  67.   int DiaLocator;
  68.   int DiaHiLiteLocator;
  69.   int DiaQuickKey;
  70.   int DiaDeadLocator;
  71.   int DiaHeading;
  72.   int DiaHiLiteHeading;
  73.   int DiaHeadingQuickKey;
  74.  
  75.   int PromptLineBold;   // Colors for the prompt line and menu bar
  76.   int PromptLineNormal;
  77.  
  78.   int WorkSpace;        // FusionWindow workspace background color
  79.  
  80.   int WinBorder;        // Window colors
  81.   int WinIcons;
  82.   int WinTitle;
  83.   int WinScrollBar;
  84.   int WinSizeCorner;
  85.   int WinInterior;
  86.   int WinBoldInterior;
  87.   int WinAltInterior;
  88.   int WinDead;
  89.  
  90.   __FusionColors();
  91. };
  92.  
  93. extern __FusionColors Colors;
  94.  
  95.